From: Corneliu ZUZU Date: Thu, 18 Feb 2016 16:47:36 +0000 (+0100) Subject: x86/monitor: minor left-shift undefined behavior checks X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1718 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=400948644fea808afb03c03b8a6d453eea189eeb;p=xen.git x86/monitor: minor left-shift undefined behavior checks This minor patch adds a range-check to avoid left-shift caused undefined behavior. Also replaces '1 <<' w/ '1U <<' @ x86 monitor.h in an effort to avoid a future potential '1 << 31' that would cause a similar issue. Signed-off-by: Corneliu ZUZU Acked-by: Razvan Cojocaru --- diff --git a/xen/arch/x86/monitor.c b/xen/arch/x86/monitor.c index a507edb157..b4bd008a25 100644 --- a/xen/arch/x86/monitor.c +++ b/xen/arch/x86/monitor.c @@ -32,10 +32,15 @@ int arch_monitor_domctl_event(struct domain *d, { case XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG: { - unsigned int ctrlreg_bitmask = - monitor_ctrlreg_bitmask(mop->u.mov_to_cr.index); - bool_t old_status = - !!(ad->monitor.write_ctrlreg_enabled & ctrlreg_bitmask); + unsigned int ctrlreg_bitmask; + bool_t old_status; + + /* sanity check: avoid left-shift undefined behavior */ + if ( unlikely(mop->u.mov_to_cr.index > 31) ) + return -EINVAL; + + ctrlreg_bitmask = monitor_ctrlreg_bitmask(mop->u.mov_to_cr.index); + old_status = !!(ad->monitor.write_ctrlreg_enabled & ctrlreg_bitmask); if ( unlikely(old_status == requested_status) ) return -EEXIST; diff --git a/xen/include/asm-x86/monitor.h b/xen/include/asm-x86/monitor.h index c789f7139c..f1bf4bdc8d 100644 --- a/xen/include/asm-x86/monitor.h +++ b/xen/include/asm-x86/monitor.h @@ -40,14 +40,14 @@ static inline uint32_t arch_monitor_get_capabilities(struct domain *d) if ( !is_hvm_domain(d) || !cpu_has_vmx ) return capabilities; - capabilities = (1 << XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG) | - (1 << XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR) | - (1 << XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT) | - (1 << XEN_DOMCTL_MONITOR_EVENT_GUEST_REQUEST); + capabilities = (1U << XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG) | + (1U << XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR) | + (1U << XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT) | + (1U << XEN_DOMCTL_MONITOR_EVENT_GUEST_REQUEST); /* Since we know this is on VMX, we can just call the hvm func */ if ( hvm_is_singlestep_supported() ) - capabilities |= (1 << XEN_DOMCTL_MONITOR_EVENT_SINGLESTEP); + capabilities |= (1U << XEN_DOMCTL_MONITOR_EVENT_SINGLESTEP); return capabilities; }